home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / UTILITY / DRDOSTIP.ARJ / DRDOS.HLP < prev    next >
Text File  |  1991-06-27  |  75KB  |  2,389 lines

  1. %APPEND%
  2.                                                              Page 1 of 2
  3.  
  4.   Purpose:
  5.  
  6.     Specify a search path for data files and overlays.
  7.  
  8.   Format:
  9.  
  10.     APPEND [\H] d:path[;[d:]path ...] [/X:ON|OFF] [/E:ON|OFF]
  11.                 ... [/PATH:ON|OFF]
  12.   
  13.       /X tells APPEND to process  SEARCH FIRST and EXEC functions.  Com-
  14.       mands like  COMP and DIR use  the SEARCH FIRST functions to search
  15.       for their files.  DOS uses the EXEC function any time a command is
  16.       input.  **Note:  Cancel APPEND before running BACKUP.**
  17.  
  18.       /E tells APPEND to keep its paths in the DOS environment, like the
  19.        PATH command.
  20.  
  21.       /PATH makes APPEND apply to files having pathnames.
  22. .cp
  23.                                                              Page 2 of 2
  24.  
  25.   Explanation:
  26.  
  27.      APPEND enables programs to search  for needed files  in directories
  28.      other  than the  current directory.   It functions similar to PATH.
  29.      PATH is used only  to search for .BAT, .COM, and .EXE files whereas
  30.  
  31.      APPEND is used to  search for any other type of file, such as .DAT.
  32.      
  33.      The punctuation  character ";" is used to separate the APPEND paths
  34.      or to request a list of the current APPEND paths.
  35.  
  36.   Examples:
  37.  
  38.      Search the  directory C:\DRDOS  for any needed data  files that are
  39.      not found in the current directory.
  40.  
  41.        APPEND c:\drdos
  42. *END*
  43. %ASSIGN%
  44.                                                              Page 1 of 2
  45.  
  46.   Purpose:
  47.  
  48.     Instructs DOS  to route  disk I/O requests  for one drive to another
  49.     disk drive.  Mainly used when you run a program  from one disk drive
  50.     that has been hard-coded to access files from a specific disk drive.
  51.     Rather than load the  program and files  on the specified drive, you
  52.     temporarily assign the current drive to the other drive.
  53.  
  54.   Format:
  55.  
  56.     ASSIGN  x=y [/A]
  57.  
  58.       x   specifies the drive to which current disk I/O requests are sent.
  59.       y   specifies the drive letter that you want disk I/O requests to be
  60.           routed to.
  61.  
  62.       /A  displays the current status and assignments
  63. .cp
  64.                                                              Page 2 of 2
  65.   Explanation:
  66.  
  67.     Some application  programs can only be run on,  or access their data
  68.     from,  one disk drive.  The ASSIGN  command allows  you to  assign a
  69.     drive letter  that is not on your  system to a drive letter which is
  70.     available on  your system.   An example of this would be if you have
  71.     only one drive  on your computer,  and the applications  program was
  72.     programmed to use  drive C for  all of its  data storage.   With the
  73.     ASSIGN command, you can assign all requests for drive C to drive A.
  74.  
  75.     If you  want to use  the ASSIGN command for more  than one drive, it
  76.     must be done with one ASSIGN command.   This is  because each ASSIGN
  77.     command statement cancels any previous ones.
  78.  
  79.   Example(s):
  80.  
  81.     Assign all requests for drives A and B to C.
  82.  
  83.       ASSIGN A=C B=C
  84. *END*
  85. %ATTRIB%
  86.                                                              Page 1 of 3
  87.  
  88.   Purpose:
  89.  
  90.     Display and/or changes any of the four attributes of a disk file.
  91.     ATTRIB R1.43    Change file attributes
  92.  
  93.   Format:
  94.  
  95.     ATTRIB [+|-A][+|-H][+|-R][+|-S] [@][d:][path]filename[.ext] [/P][/S]
  96.       +A            turn on archive attribute (-A turn it off)
  97.       +H            turn on hidden attribute (-H turn it off)
  98.       +R            make file read-only (-R make it read-write)
  99.       +S            turn on system attribute (-S turn it off)
  100.       @             the filename that follows is the name of a file list
  101.       d:            drive which attrib is to search
  102.       path          directory where search is to begin
  103.       filename.ext  file for which attributes are to be displayed or changed
  104.       /P            pause after each page
  105.       /S            search for files in subdirectories
  106. .cp
  107.                                                              Page 2 of 3
  108.  
  109.   Explanation:
  110.  
  111.     Multiple files may  be specified on  the command line.   If no files
  112.     are specifed attrib will assume *.*.
  113.  
  114.     Each disk  file  can be marked  as "read-only" so that  it cannot be
  115.     accidentally deleted.   A file that is marked as "read-only" will be
  116.     shown in the directory as normal with the DIR command.   However, if
  117.     you try to delete the file with the DEL or ERASE commands,  DOS will
  118.     not carry out the command. You get an "Access denied" error message.
  119.  
  120.     The "archive" file attribute shows whether  a file has  been changed
  121.     since the last backup was made. This attribute is cleared by special
  122.     backup programs when they  perform backup on a disk, such as the DOS
  123.     BACKUP program.  When using backup programs, you can specify  backup
  124.     of only those files that have changed since the last backup--instead
  125.     of backing  up all files,  which can take  much longer.   The BACKUP
  126.     program examines this archive attribute  to determine whether or not
  127.     to backup a file.
  128. .cp
  129.                                                              Page 3 of 3
  130.  
  131.     The "system" attribute,  when switched ON,  prevents the DIR command
  132.     from displaying the file and the COPY command  from copying the file
  133.     unless a  "/S" switch is employed.
  134.  
  135.   Example(s):
  136.  
  137.     Set the read-only attribute for MYFILE.TXT.
  138.  
  139.       ATTRIB +R MYFILE.TXT
  140.  
  141.     Set the "archive" attribute on all file with a filename extension of
  142.     .DAT, including those in subdirectories, pausing after each screen.
  143.  
  144.       ATTRIB +A *.DAT /S /P
  145.  
  146.     Display the attribute of all files.
  147.  
  148.       ATTRIB *.*
  149. *END*
  150. %BACKUP%
  151.                                                                Page 1 of 2
  152.  
  153.   Purpose:
  154.  
  155.     BACKUP R1.05    Disk backup utility
  156.     
  157.     Backs up one or more files from one disk to another. This is usually
  158.     used to back up files from a hard disk.
  159.  
  160.   Format:
  161.  
  162.     BACKUP [/H] d:[path[file.ext]] d: [/S][/M][/D:mm-dd-yy][/T:hh:mm:ss]
  163.          ...[/F][/A][/L[:path[file.ext]]
  164.  
  165.      /H     Display this help text
  166.      /A     Add new files to backup disk without erasing existing ones
  167.      /S     Backup files in sub-directories also
  168.      /M     Backup only files modified since last backup
  169.      /D     Backup files modified since a given date
  170. .cp
  171.                                                              Page 2 of 2
  172.  
  173.   Format:  (cont'd)
  174.  
  175.      /T     Backup files modified since a given time on a given date
  176.      /F     Format destination disks
  177.      /L     Record actions in a log file - default name \BACKUP.LOG
  178.  
  179.  
  180.   Example(s):
  181.  
  182.     Backup all files on drive C to drive A.
  183.  
  184.       BACKUP C:\*.* A: /S
  185. *END*
  186. %CACHE%
  187.                                                              Page 1 of 2
  188.  
  189.   Purpose:
  190.  
  191.     CACHE R0.06 Disk Cache
  192.  
  193.   Format:
  194.  
  195.     CACHE [/H] [/S=xxx] [/X] [/E]
  196.       /S    Requested size of disk cache in Kbytes
  197.       /X    Use eXpanded memory for buffers
  198.       /E    Use Extended memory for buffers
  199.  
  200.     Use of no options merely displays current status of cache.
  201.  
  202.   Explanation:
  203.  
  204.     Used to speed up the process of accessing data on a hard disk.  Used
  205.     to define and set up  an area of RAM memory  which acts as a buffer,
  206.     storing a copy of data frequently read from the disk.
  207. .cp
  208.                                                              Page 2 of 2
  209.  
  210.   Examples(s):
  211.  
  212.     Install disk cache using 512 Kbytes of eXpanded memory.
  213.  
  214.       CACHE /X /S=512
  215.  
  216.     Display the current status of the disk cache.
  217.  
  218.       CACHE
  219.  
  220.       The display produced will look like this:
  221.  
  222.       ******************************************************
  223.       *        1 drive cached in 123 track buffers         *
  224.       *        2091 K Bytes of Etxended Memory used        *
  225.       *        69% of CACHE in use with a 74% hit rate.    *
  226.       ******************************************************
  227. *END*
  228. %CD/CHDIR%
  229.                                                              Page 1 of 2
  230.  
  231.   Purpose:
  232.  
  233.     Allows you to move between disk subdirectories.  Used to change cur-
  234.     rent directory to that specified.
  235.  
  236.   Format:
  237.  
  238.     CD [d:][\]  or  CHDIR [d:][\]
  239.     CD [d:]dirpath
  240.  
  241.   Explanation:
  242.  
  243.     Typing CHDIR or CD without  any parameters will  display the current
  244.     directory.   Specifying a  directory path of  ".."  pops the current
  245.     directory back one level up the directory tree.
  246. .cp
  247.                                                              Page 2 of 2
  248.  
  249.   Example(s):
  250.  
  251.     Change the current directory to the root directory; i.e. \ (slash).
  252.  
  253.       CD \
  254.  
  255.     Change current directory to \LEVEL1\LEVEL2 from \LEVEL1\LEVEL2\LEVEL3.
  256.  
  257.       CD \LEVEL1\LEVEL2   or   CD ..
  258.  
  259.     Display the current directory.
  260.  
  261.       CD
  262. *END*
  263. %CHCP%
  264.                                                              Page 1 of 1
  265.  
  266.   Purpose:
  267.  
  268.     Changes a specified code page.
  269.  
  270.   Format:
  271.  
  272.     CHCP [cp]
  273.  
  274.       cp - selected code page number
  275.  
  276.   Explanation:
  277.  
  278.     This command  changes (selects)  the specified code  page number for
  279.     Dr DOS and for all devices which support code page switching.
  280.  
  281.     Typing CHCP without specifying a code page  number displays the cur-
  282.     rent code page.
  283. *END*
  284. %CHKDSK%
  285.                                                              Page 1 of 2
  286.  
  287.   Purpose:
  288.  
  289.     CHKDSK 6.16    Disk checker
  290.  
  291.     Analyzes the directories, files, and File Allocation Table on the
  292.     specified drive, or default drive, and produces a disk and memory
  293.     status report.
  294.  
  295.   Format:
  296.  
  297.     CHKDSK [/Help] [d:] [file] [options]
  298.       file  Individual files can be checked. Wild cards are allowed.
  299.       /A    Available memory display only.
  300.       /B    Read all files to find bad clusters.
  301.       /C    Display cluster numbers of cross linked files.
  302.       /D    Find removed directories on the disk.
  303.       /F    Write fixes back to disk. (Default = R/O)
  304.       /L    Rebuild cluster links.
  305. .cp
  306.                                                              Page 2 of 2
  307.  
  308.   Format:  (cont'd)
  309.       /M    Verify disk for bad clusters, map bad clusters.
  310.       /P    Display Parent block for all directories.
  311.       /R    Recover root directory.
  312.       /S    Show actual file space.
  313.       /V    Be verbose - displays extra information.
  314.     
  315.   Explanation:
  316.  
  317.     The check  disk command  scans a disk and checks  it for two things:
  318.     space allocation and spacing errors.  It  then produces a memory and
  319.     disk status report which shows how much total space is left on disk,
  320.     the amount of space in use in bytes, and the number of files in use.
  321.  
  322.   Example(s):
  323.  
  324.     Check drive B and fix all file allocation errors.
  325.  
  326.       CHKDSK B: /F
  327. *END*
  328. %CLS%
  329.                                                                Page 1 of 1
  330.  
  331.   Purpose:
  332.  
  333.     Clears the video screen.
  334.  
  335.   Format:
  336.  
  337.     CLS
  338.  
  339.   Explanation:
  340.  
  341.     Use this command when you want to clear the video screen.
  342. *END*
  343. %COMP%
  344.                                                              Page 1 of 2
  345.  
  346.   Purpose:
  347.  
  348.     COMP R1.06    File comparison utility
  349.  
  350.   Format:
  351.  
  352.     COMP [/Help] [d:[path]]file.ext [d:[path]]file.ext [/A] [/M:n]
  353.  
  354.     /H        Display this help text
  355.     /A        ASCII compare - print differences as ASCII characters.
  356.     /M:n      Maximum number of comparison mismatches per file.
  357.     d:path    Drive/Path of files to be compared.
  358.     file.ext  Files to be compared - may contain wild card characters.
  359.  
  360.   Explanation:
  361.  
  362.     This command is useful when you want to see if two files contain the
  363.     same data. COMP will display any differences on the screen.
  364. .cp
  365.                                                              Page 2 of 2
  366.  
  367.   Example(s):
  368.  
  369.     Compare JUNK on drive A to JUNK on drive B.
  370.  
  371.       COMP A:JUNK B:
  372.  
  373.     Compare all files on drive A to all files on drive B.
  374.  
  375.       COMP A: B:
  376.  
  377.     Compare all files on  drive A  with the extension  .ASM to all files
  378.     on drive C with the same name.
  379.  
  380.       COMP A:*.ASM C:
  381. *END*
  382. %COPY%
  383.                                                              Page 1 of 3
  384.  
  385.   Purpose:
  386.  
  387.     Copies and/or combines files.
  388.  
  389.   Format:
  390.  
  391.     COPY[/A][/B][d:][path]filename[.ext][/A][/B]
  392.               [d:][path]filename[.ext][/A][/B][/V]      or
  393.  
  394.     COPY[/A][/B][d:][path]filename[.ext][/A][/B]
  395.               [+[d:][path]filename[.ext][/A][/B]...]
  396.               [d:][path]filename[.ext][/A][/B][/V]
  397.   
  398.       /A Treat as ASCII file. When used with source file name, copies up
  399.       to but not including the first Ctrl Z (EOF marker). When used with
  400.       target file name, causes Ctrl Z  to be added as the last character
  401.       of the file, as required by some word processors.
  402. .cp
  403.                                                              Page 2 of 3
  404.  
  405.   Format:  (cont'd)
  406.  
  407.       /B With source file name, the file is treated as BINARY file.  The
  408.       entire file is  copied regardless of  Ctrl Z markers  encountered.
  409.       With target file name, causes NO Ctrl Z to be added to the file.
  410.  
  411.       /V Verify that target sectors are  written correctly.  This is the
  412.       same as setting the VERIFY command to ON.
  413.  
  414.       /S Includes system files and hidden files in the COPY operation.
  415.  
  416.       /C Asks for confirmation before copying a file or group of files.
  417.  
  418.       /Z Zeroes the top bit of every byte in the destination file.
  419.  
  420.   Explanation:
  421.  
  422.     COPY is used to copy files or groups of files  from one directory to
  423. .cp
  424.                                                              Page 3 of 3
  425.  
  426.   Explanation:  (cont'd)
  427.  
  428.     to another and/or from one disk to another.  Wildcard characters may
  429.     be used in file specifications.
  430.  
  431.   Example(s):
  432.  
  433.     Copy HELP.DAT from drive A to drive B.
  434.  
  435.       COPY A:HELP.DAT B:
  436.     
  437.     Copy all files from drive B to drive C.
  438.  
  439.       COPY B:*.* C:
  440.  
  441.     Copy FILE1 and FILE2 from drive A into  one file named FILE3 on disk
  442.     drive C.
  443.  
  444.       COPY A:FILE1 + A:FILE2 C:FILE3
  445. *END*
  446. %CTTY%
  447.                                                              Page 1 of 2
  448.  
  449.   Purpose:
  450.  
  451.     Changes the standard  input and output  console to an auxiliary con-
  452.     sole, or restores the keyboard and  screen as the standard input and
  453.     output devices.
  454.  
  455.   Format:
  456.  
  457.     CTTY device-name
  458.  
  459.   Explanation:
  460.  
  461.     This command is useful when you want  to use a terminal connected to
  462.     your serial port.  The MODE command must be used before this is done
  463.     to initialize the serial port to the desired settings.
  464. .cp
  465.                                                              Page 2 of 2
  466.  
  467.   Example(s):
  468.  
  469.     Set the standard input and output device to the first serial port.
  470.  
  471.       CTTY COM1:
  472. *END*
  473. %CURSOR%
  474.                                                              Page 1 of 1
  475.  
  476.   Purpose:
  477.  
  478.     CURSOR  R1.01   Laptop cursor utility.
  479.  
  480.   Format:
  481.  
  482.     CURSOR  [/H] [/Snn] [/C] [OFF]
  483.       /Snn    Set flash interval.  nn is a 2 digit number from 1 to 20;
  484.               it is the cursor flash interval in 1/20ths of a second.
  485.       /C      Enables CGA compatibilty.   Specifying this option ensures
  486.               display is  accessed only during  horizontal retrace, pre-
  487.               venting the snow effect that occurs on some CGA displays.
  488.       OFF     Restores the hardware cursor.
  489.  
  490.   Explanation:
  491.  
  492.     CURSOR generates a large cursor with variable flash  rate for use on
  493.     laptops and portables with high persistance (e.g., LCD) displays.
  494. *END*
  495. %DATE%
  496.                                                              Page 1 of 2
  497.  
  498.   Purpose:
  499.  
  500.     Set or display the current system date.
  501.  
  502.   Format:
  503.  
  504.     DATE [mm-dd-yy]
  505.  
  506.   Explanation:
  507.  
  508.     Type DATE without a  parameter to display  and/or set current system
  509.     date.  DOS will display the current  date and ask you to enter a new
  510.     date.  You can enter a new date, or press  Enter to keep the current
  511.     date.
  512. .cp
  513.                                                              Page 2 of 2
  514.  
  515.   Example(s):
  516.  
  517.     Set the system date to December 25, 1987.
  518.  
  519.       DATE 12-25-87
  520.  
  521.     Display the current system date.
  522.  
  523.       DATE
  524. *END*
  525. %DEL/ERASE%
  526.                                                              Page 1 of 2
  527.  
  528.   Purpose:
  529.  
  530.     Deletes the specified disk file.
  531.  
  532.   Format:
  533.  
  534.     DEL (or ERASE) [d:][path]filename[.ext] [/C] [/S]
  535.  
  536.       /C  Prompts you to confirm deletion on a file by file basis
  537.       /S  Includes deletion of system files
  538.  
  539.   Explanation:
  540.  
  541.     This command erases files that match the filename.   Write protected
  542.     files cannot be erased.   If the global filename  characters *.* are
  543.     given, DOS will request verification of this command, by displaying:
  544.     " Are you sure  (Y/N)? "   The global filename  characters, ? and *,
  545.     are allowed.
  546. .cp
  547.                                                              Page 2 of 2
  548.  
  549.   Example(s):
  550.  
  551.     Delete all files with the extension .ASM.
  552.  
  553.       DEL *.ASM
  554.  
  555.     Delete all files. DOS will ask to verify this operation.
  556.  
  557.       DEL *.*
  558.  
  559.     Delete the file named FILE1.TXT.
  560.  
  561.       ERASE FILE1.TXT
  562. *END*
  563. %DELQ/ERAQ%
  564.                                                              Page 1 of 2
  565.  
  566.   Purpose:
  567.  
  568.     Deletes the specified disk file(s),  automatically querying for con-
  569.     firmation before deleting.
  570.  
  571.   Format:
  572.  
  573.     DELQ (or ERAQ) [d:][path]filename[.ext] [/S]
  574.  
  575.       /S  Includes deletion of system files
  576.  
  577.   Explanation:
  578.  
  579.     This command erases files that match the filename.   Write protected
  580.     files cannot be erased.   The global  filename  characters,  "?" and
  581.     "*", are allowed.
  582. .cp
  583.                                                              Page 2 of 2
  584.  
  585.   Example(s):
  586.  
  587.     Delete - after confirmation - all files with the extension .ASM.
  588.  
  589.       DELQ *.ASM
  590.  
  591.     Delete - after confirmation - the file named FILE1.TXT.
  592.  
  593.       ERAQ FILE1.TXT
  594. *END*
  595. %DIR%
  596.                                                              Page 1 of 2
  597.  
  598.   Purpose:
  599.  
  600.     Displays a list of file names in the specified directory, or current
  601.     directory if none is specified.
  602.  
  603.   Format:
  604.  
  605.     DIR [d:][path][filename[.ext]] [/D][/S][/A][/L][/R][/C][/P][/W]
  606.  
  607.       /D   display files where the system attribute is reset
  608.       /S   displays all files with the system attribute set
  609.       /A   displays all files
  610.       /L   includes file size and date/time stamp
  611.       /R   tells Dr DOS to remember new switches as defaults for DIR
  612.       /C   tells Dr DOS to remember thse switches for next DIR
  613.       /P   pause after each full page screen display
  614.       /W   list in wide format across the screen
  615. .cp
  616.                                                              Page 2 of 2
  617.  
  618.   Explanation:
  619.  
  620.     DIR displays the file contents of a disk directory. Without switches
  621.     DIR does not display hidden or system files.   The use of wildcards,
  622.     such as "*" and "?", allow you  to specify multiple  files or groups
  623.     of files.
  624.  
  625.   Example(s):
  626.  
  627.     Show all files in the current drive and directory with a file exten-
  628.     sion of .WP
  629.  
  630.       DIR *.WP
  631.  
  632.     Show all files on drive A.
  633.  
  634.       DIR A:
  635. *END*
  636. %DISKCOMP%
  637.                                                              Page 1 of 2
  638.  
  639.   Purpose:
  640.  
  641.     DISKCOMP R1.32    Floppy diskette image comparison
  642.  
  643.   Format:
  644.  
  645.     DISKCOMP [d:] [d:] [/1] [/8] [/V]
  646.  
  647.       d:    drive specification for removable drive
  648.       /1    compare first side only of double sided diskette
  649.       /8    compare only first eight sectors per track of diskette
  650.       /V    verify that all tracks can be read (other switches ignored)
  651.  
  652.   Explanation:
  653.  
  654.     DISKCOMP compares two entire diskettes track by track.  This is use-
  655.     ful to verify that a DISKCOPY operation was successful.
  656. .cp
  657.                                                                Page 2 of 2
  658.  
  659.   Explanation:  (cont'd)
  660.  
  661.     Older versions of DOS only used one side of the diskette, and 8 sec-
  662.     per track. New versions use two sides of the disk, and 9 sectors per
  663.     track; this allows for more data to be stored on each diskette.  The
  664.     /1 and /8 parameters are not necessary with Dr. DOS or  new versions
  665.     of DOS.
  666.  
  667.   Example(s):
  668.  
  669.     Compare the double sided 9 sector diskettes in drives A and B.
  670.  
  671.       DISKCOMP A: B:
  672. *END*
  673. %DISKCOPY%
  674.                                                                Page 1 of 2
  675.  
  676.   Purpose:
  677.  
  678.     DISKCOPY R1.33    Floppy diskette duplication
  679.  
  680.   Format:
  681.  
  682.     DISKCOPY [s:] [d:] [/1]
  683.  
  684.       s:            drive containing source diskette
  685.       d:            drive containing destination diskette
  686.       /1            copy side 0 only
  687.  
  688.   Explanation:
  689.  
  690.     The DISKCOPY command copies an entire  diskette and format the dest-
  691.     ination disk if necessary. If you have only one disk drive, DISKCOPY
  692.     will tell you when to change the disks.
  693. .cp
  694.                                                                Page 2 of 2
  695.  
  696.   Explanation:  (cont'd)
  697.  
  698.     Older versions of DOS used only one side of the diskette,  where new
  699.     versions use two sides of the diskette; this allows for more data to
  700.     be stored on each diskette.  The /1 parameter is not  necessary with
  701.     Dr DOS or newer versions of DOS.
  702.  
  703.     In general,  the DISKCOPY command is  not a good  method of  copying
  704.     diskettes because it preserves the often found  inefficient ordering
  705.     of data.  Use the FORMAT and COPY commands instead.
  706.  
  707.     Some commercial disks are copy protected.  If this is the case, then
  708.     DISKCOPY cannot complete the copy,  or it will make a copy that does
  709.     not work.
  710.  
  711.   Example(s):
  712.  
  713.     Copy the disk in drive A to drive B.
  714.  
  715.       DISKCOPY A: B:
  716. *END*
  717. %EDITOR%
  718.                                                              Page 1 of 1
  719.  
  720.   Purpose:
  721.  
  722.     EDITOR R2.00    Full Screen Text Editor
  723.  
  724.   Format:
  725.  
  726.     EDITOR [/Help]  [d:][path][filename[.ext]]
  727.  
  728.   Explanation:
  729.  
  730.     EDITOR is a text editor.   It can be  used to create,  alter or just
  731.     read through a file of ASCII text.
  732.  
  733.     The command line  file  specification is the drive,  path  and file-
  734.     name  of the file  to be edited.   If you do not supply  this on the
  735.     command line, EDITOR will  prompt you for it.  If the  file does not
  736.     exist EDITOR will ask you if you wish to create it.   Online help is
  737.     available when executing  EDITOR by pressing Cntrl-J.
  738. *END*
  739. %EXE2BIN%
  740.                                                              Page 1 of 2
  741.  
  742.   Purpose:
  743.  
  744.     EXE2BIN  R1.00 Convert EXE files to BIN or COM files.
  745.   
  746.   Format:
  747.  
  748.     EXE2BIN [/H] [file1[.ex1]] [file2[.ex2]] [/Sxxxx]
  749.     file1        This is the source EXE type file. The file must have a
  750.                  valid EXE header.  If no  extension is specified a de-
  751.                  fault of .exe is added. File1 can include a valid path.
  752.     file2        This is  the destination  filename.   If file2 is given
  753.                  with no extension, then .bin or .com is added depending
  754.                  on the contents of  the source EXE header.  If file2 is
  755.                  not specified then  file1 is  used with  a .bin or .com
  756.                  extension. File2 can include a valid path.
  757.     /Sxxxx       xxxx is a (maximum of)  4 digit hex value which will be
  758.                  used as the base  for any segment  fixups which are re-
  759.                  quired for a BIN type file.
  760. .cp
  761.                                                              Page 2 of 2
  762.  
  763.   Explanation:
  764.  
  765.     EXE2BIN converts EXE type executable files produced by a DOS  linker
  766.     into binary image files (usually with a .bin extension) or .com exe-
  767.     cutable files.   Whether the destination file is a BIN or a COM type
  768.     depends on the initial IP field  in the EXE file's header.   A value
  769.     of 0  will result in a BIN type file and a value of 100h will result
  770.     in a COM  type file.   The  destination filename  extension does NOT
  771.     effect this.
  772.  
  773.   Example(s):
  774.  
  775.     Convert the file data.exe to data.bin.
  776.  
  777.       EXE2BIN data
  778. *END*
  779. %FDISK%
  780.                                                                Page 1 of 1
  781.  
  782.   Purpose:
  783.  
  784.     Prepares a hard disk for formatting.
  785.  
  786.   Format:
  787.  
  788.     FDISK
  789.  
  790.   Explanation:
  791.  
  792.     A new hard disk is not usable until the surface has been partitioned
  793.     and then formatted.  FDISK does the partitioning.   Then utilize the
  794.     use the FORMAT command to format the disk.  You only have to use the
  795.     FDISK command once.  *** WARNING ***  The FDISK command destroys all
  796.     files on the disk!
  797.  
  798.     See the Dr DOS User Guide for a detailed explanation of FDISK.
  799. *END*
  800. %FILELINK%
  801.                                                              Page 1 of 3
  802.  
  803.   Purpose:
  804.  
  805.     FILELINK R1.03   File transfer utility.   Used to transfer files be-
  806.     tween two computers connected via their serial communications ports.
  807.  
  808.  
  809.   Format:
  810.  
  811.     FILELINK [/H] command [@][src_spec] [dest_spec] [COMn:b] [switches]
  812.  
  813.     FILELINK SETUP  [COMn:b]   configure FILELINK to use COM  port n for
  814.                                baud rate b
  815.     FILELINK DUPLICATE         transfer  FILELINK to other  computer via
  816.                                COM port
  817.     FILELINK SLAVE  [/X]       enter slave mode
  818.     FILELINK DIRECTORY [filespec]  show directory of slave computer
  819.     FILELINK QUIT              terminate  FILELINK running on slave com-
  820.                                puter
  821. .cp
  822.                                                              Page 2 of 3
  823.  
  824.   Format:  (cont'd)
  825.  
  826.     FILELINK TRANSMIT  [@]src_spec [dest_spec] [switches]
  827.      Copy src_spec files from master to slave. (@ preceeds a file list.)
  828.      Use dest_spec to specify the destination path on slave.
  829.  
  830.     FILELINK RECEIVE   [@]src_spec [dest_spec] [switches]
  831.      Copy src_spec files from slave to master. (@ precedes a file list.)
  832.      Use dest_spec to specify the destination path on master.
  833.  
  834.     All commands may include a COMn:b parameter to  override the default
  835.     port configuration set with the FILELINK SETUP command.
  836.  
  837.     /A            only transfer files with archive attribute
  838.     /D:mm-dd-yy   only transfer files modified since specified date
  839.     /H            transfer files with hidden or system attributes
  840.     /U            only transfer files that don't exist on destination,
  841.                   or exist but with an earlier date stamp
  842. .cp
  843.                                                              Page 3 of 3
  844.  
  845.   Format:  (cont'd)
  846.  
  847.     /M            only transfer files with archive attribute
  848.     /P            (TRANSMIT/RECEIVE) prompt before transfering each file
  849.     /P            (DIRECTORY) page directory display
  850.     /R            overwrite read-only files
  851.     /S            copy files in sub-directories
  852.     /X            do not allow any file on slave to be overwritten
  853.  
  854.   Explanation:
  855.  
  856.     Used to establish a master-slave communication  link between two PCs
  857.     that have been  connected together via a cable  between their serial
  858.     commumications ports.  The communications link provides a  mechanism
  859.     for inter-PC file transfers.  See Dr DOS User Guide for more details.
  860. *END*
  861. %FIND%
  862.                                                                Page 1 of 2
  863.  
  864.   Purpose:
  865.  
  866.     FIND R1.43    Searches for a pattern of letters in a text file.
  867.  
  868.   Format:
  869.  
  870.     FIND [options] "search string" [@][[d:][path]filename[.ext]...]
  871.       /B            change display format
  872.       /C            show only the number of lines containing "string"
  873.       /F            show only the name of files that contain "string"
  874.       /N            display line numbers
  875.       /S            search files in sub-directories
  876.       /U            case-sensitive search (eg 'A' doesn't match 'a')
  877.       /V            display lines not containing "string"
  878.       @             the filename that follows is the name of a file list
  879.       d:            drive which find is to search
  880.       path          directory where search is to begin
  881.       filename.ext  file to be searched (wildcards allowed)
  882. .cp
  883.                                                              Page 2 of 2
  884.  
  885.   Explanation:
  886.  
  887.     Use FIND to search text files for a specified string of characters.
  888.  
  889.   Example(s):
  890.  
  891.     Display lines from the file PROG that DO NOT contain the letter F.
  892.  
  893.       FIND/V "F" PROG
  894.  
  895.     Display how many lines in the file PROG that contain the name JOE.
  896.  
  897.       FIND/C "JOE" PROG
  898. *END*
  899. %FORMAT%
  900.                                                              Page 1 of 3
  901.  
  902.   Purpose:
  903.  
  904.     FORMAT R1.50    Floppy diskette format
  905.  
  906.   Format:
  907.  
  908.     FORMAT [d:] [options]
  909.       d:         drive containing diskette to be formatted
  910.       /V         prompt for volume label
  911.       /B         leave space for OS system files (5.25 inch drives only)
  912.       /S         transfer DrDOS O/S system files, including COMMAND.COM,
  913.                  to root (\) directory of disk after formatting
  914.       /8         set sectors per track to 8 (5.25 inch drives only)
  915.       /1         set to single sided (5.25 inch drives only)
  916.       /4         reduce format to 8/9 sectors (hyperdrives only)
  917.       /N:8       set sectors per track
  918.       /T:40      set tracks to be formatted (40 or 80 only)
  919.       /F:360     capacity of disk to be formatted (160, 180, 320, 360,
  920.                  1200, 720 or 1440)
  921.  
  922.  
  923. .cp
  924.                                                                Page 2 of 3
  925.  
  926.   Explanation:
  927.  
  928.     A new disk,  including a hard disk,  must be  prepared before  it is
  929.     used for the first time.  This step is called formatting. Be careful
  930.     not to accidentally format a valuable disk.  ***** WARNING ***** The
  931.     FORMAT command destroys all files on the disk!
  932.  
  933.     The following table of parameters is allowed for each type of disk:
  934.  
  935.              ┌────────────┬─────────────────────────┐
  936.              │   DISK     │   PARAMETERS ALLOWED    │
  937.              ├────────────┼─────────────────────────┤
  938.              │ 160K/180K  │  /S, /V, /1, /8, /B, /4 │
  939.              │ 320K/360K  │  /S, /V, /1, /8, /B, /4 │
  940.              │ 720K/1.44M │  /S, /V, /N, /T         │
  941.              │ 1.2M       │  /S, /V, /N, /T         │
  942.              │ FIXED DISK │  /S, /V                 │
  943.              └────────────┴─────────────────────────┘
  944. .cp
  945.                                                              Page 3 of 3
  946.  
  947.   Example(s):
  948.  
  949.     Format the diskette in drive B.
  950.  
  951.       FORMAT B:
  952.  
  953.     Format the disk in drive A and make it a bootable system disk.
  954.  
  955.       FORMAT A: /S
  956.  
  957.     Format a 720K diskette in a 1.44M drive.
  958.  
  959.       FORMAT A: /N:9 /T:80
  960. *END*
  961. %GRAFTABL%
  962.                                                                Page 1 of 1
  963.  
  964.   Purpose:
  965.  
  966.     GRAFTABL R1.01    Graphics character set support,
  967.  
  968.   Format:
  969.  
  970.     GRAFTABL [/Help] [code] [/STATUS]
  971.       code      437    USA (Default if no code)
  972.                 865    Norway
  973.                 860    Portugal
  974.                 863    French Canadian
  975.                 850    Multilingual
  976.       /STATUS   Display current status
  977.  
  978.   Explanation:
  979.  
  980.     Use GRAFTABL to display foreign language characters when in graphics
  981.     mode on the color/graphics adapter (CGA).
  982. *END*
  983. %GRAPHICS%
  984.                                                                Page 1 of 1
  985.  
  986.   Purpose:
  987.  
  988.     GRAPHICS R1.01    Graphics screen print utility
  989.  
  990.   Format:
  991.  
  992.     graphics [COLOR] [/R]
  993.  
  994.     /R      Reverse black and white dots.
  995.     COLOR   Use color printer.
  996.  
  997.   Explanation:
  998.  
  999.     Allows the contents of a graphics screen  to be printed on a printer
  1000.     which can print graphics.
  1001. *END*
  1002. %JOIN%
  1003.                                                              Page 1 of 1
  1004.  
  1005.   Purpose:
  1006.  
  1007.     JOIN    R1.00   Join physical drives.
  1008.  
  1009.   Format:
  1010.  
  1011.     JOIN [/Help] [d: path | /D]
  1012.  
  1013.     d:            drive to JOIN
  1014.     path          root directory to JOIN to
  1015.     /D            undo JOIN on d:
  1016.  
  1017.   Explanation:
  1018.  
  1019.     Connects a drive to a directory on another drive to produce a single
  1020.     directory structure from two separate directories.
  1021. *END*
  1022. %KEYB%
  1023.                                                              Page 1 of 2
  1024.  
  1025.   Purpose:
  1026.  
  1027.     KEYB R2.03    National keyboard utility
  1028.  
  1029.   Format:
  1030.  
  1031.     KEYB code[+|-][,codepage]
  1032.  
  1033.     Country               Codepages      Country               Codepages
  1034.     BE - Belgium          437   850      PO - Portugal         860   850
  1035.     CF - Canada (French)  863   850      SF - Swiss (French)   437   850
  1036.     DK - Denmark          865   850      SG - Swiss (German)   437   850
  1037.     FR - France           437   850      SP - Spain            437   850
  1038.     GR - Germany          437   850      SV - Sweden           437   850
  1039.     IT - Italy            437   850      SU - Finland          437   850
  1040.     LA - Latin America    437   850      UK - United Kingdom   437   850
  1041.     NL - Netherlands      437   850      US - United States    437   850
  1042.     NO - Norway           865   850
  1043. .cp
  1044.                                                              Page 2 of 2
  1045.  
  1046.   Format:  (cont'd)
  1047.  
  1048.     +     Force keyboard type to enhanced
  1049.     -     Force keyboard type to non-enhanced
  1050.  
  1051.     If codepage is omitted then the 1st, (local), codepage shown will be
  1052.     assumed.
  1053.  
  1054.   Explanation:
  1055.  
  1056.     Loads a keyboard program that replaces the keyboard program resident
  1057.     in the ROM BIOS. This will allow support of non-U.S. keyboards.
  1058. *END*
  1059. %LABEL%
  1060.                                                                Page 1 of 2
  1061.  
  1062.   Purpose:
  1063.  
  1064.     Allows you to create, change or delete a volume label on a disk.
  1065.  
  1066.   Format:
  1067.  
  1068.     LABEL [d:][volume label]
  1069.  
  1070.   Explanation:
  1071.  
  1072.     It is suggested that you label each of your  disks with a volume la-
  1073.     bel.   This is an electronic  label to indicate  what information is
  1074.     contained on the disk.  A label can be put on the disk when you for-
  1075.     mat it by using the FORMAT command with the /V parameter.   However,
  1076.     you can also assign or change a disk label by using the LABEL command.
  1077. .cp
  1078.                                                              Page 2 of 2
  1079.  
  1080.   Example(s):
  1081.  
  1082.     LABEL will show any label currently on the disk in drive A and query
  1083.     if you want to change or delete the current label.
  1084.  
  1085.       LABEL A:
  1086.  
  1087.     Make the volume label on the disk in drive A UTILS.
  1088.  
  1089.       LABEL A:UTILS
  1090. *END*
  1091. %MD/MKDIR%
  1092.                                                              Page 1 of 2
  1093.  
  1094.   Purpose:
  1095.  
  1096.     Creates a  subdirectory on the  specified disk  within the specified
  1097.     directory.
  1098.  
  1099.   Format:
  1100.  
  1101.     MKDIR [d:]path  or  MD [d:]path
  1102.  
  1103.   Example(s):
  1104.  
  1105.     Create a subdirectory named LEVEL1 under the current directory.
  1106.  
  1107.       MD LEVEL1
  1108. .cp
  1109.                                                              Page 2 of 2
  1110.  
  1111.   Example(s):
  1112.  
  1113.     Create a subdirectory named ADP under the root directory of drive C.
  1114.  
  1115.       MD \ADP
  1116.  
  1117.     Create a subdirectory named ELEC under the directory named UTILS.
  1118.  
  1119.       MD \UTILS\ELEC
  1120. *END*
  1121. %MEM%
  1122.                                                              Page 1 of 1
  1123.  
  1124.   Purpose:
  1125.  
  1126.     MEM R1.01    Memory usage utility
  1127.     Show current memory utilization.
  1128.  
  1129.   Format:
  1130.  
  1131.     MEM [/Help] | [/B] [/D] [/S] [/M] [/A] [/P]
  1132.       /H       Display this help text
  1133.       /B       Show allocated memory blocks
  1134.       /D       Show device drivers
  1135.       /S       Show system structures
  1136.       /M       Show system memory map
  1137.       /A       Show all information
  1138.       /P       Pause listing at each page
  1139.  
  1140.     If no parameter is specified the total amount of memory available is
  1141.     shown.
  1142. *END*
  1143. %MEMMAX%
  1144.                                                              Page 1 of 1
  1145.  
  1146.   Purpose:
  1147.  
  1148.     MEMMAX R1.00   Memory extension control.
  1149.     Provide control of utilization of upper and lower memory.
  1150.  
  1151.   Format:
  1152.  
  1153.     MEMMAX [/Help] [+|-U] [+|-L] [/U] [/L]
  1154.      +U    opens upper memory for HILOAD (-U closes it)
  1155.      +L    opens lower memory for programs (-L closes it)
  1156.      /U    displays upper memory status
  1157.      /L    displays lower memory status
  1158.  
  1159.     Upper memory is  memory between  640 Kb and 1 Mb.   Lower memory  is
  1160.     memory in the first 64 Kb.
  1161. *END*
  1162. %MODE%
  1163.                                                              Page 1 of 5
  1164.  
  1165.   Purpose:
  1166.  
  1167.     MODE R1.22    Printer and screen mode utility.
  1168.  
  1169.     Set the way that a printer, a color/graphics monitor adapter, or
  1170.     asynchronous communications adapter operates.
  1171.  
  1172.   Format:
  1173.  
  1174.     MODE LPT#:[n][,[m][,[P][,s]]]
  1175.       or LPT#:=COMn
  1176.       or mode[,lines]
  1177.       or [mode],m[,T]
  1178.       or CON: [LINES=lines] [COLS=cols] [RATE=r DELAY=d]
  1179.       or COM#:b[,p][,d][,s][,P]
  1180.       or device CODEPAGE options
  1181.  
  1182.     Each format of MODE command is explained in detail as follows:
  1183. .cp
  1184.                                                              Page 2 of 5
  1185.  
  1186.   Format:  (cont'd)
  1187.  
  1188.     LPT#:n,m,P   Set-up printer
  1189.       #=Printer port number,  n=characters per line (80, 132),
  1190.       m=lines per inch (6 or 8), and P=Continuous retry on timeout
  1191.  
  1192.     LPT#:=COMn   Redirect printer port # output to serial port n
  1193.  
  1194.     mode,lines   Set display mode
  1195.       mode=   40 or BW40 - 40 columns no color (CGA)
  1196.               80 or BW80 - 80 columns no color (CGA)
  1197.               CO40       - 40 columns color (CGA)
  1198.               CO80       - 80 columns color (CGA)
  1199.               MONO       - 80 columns (MDA)
  1200.       lines= # of text rows: 25, 43 or 50
  1201.  
  1202.     [mode],m[,T] Set display mode parameter as described above
  1203.       m=CGA display shift direction: L or R
  1204.       T=show test pattern
  1205. .cp
  1206.                                                              Page 3 of 5
  1207.  
  1208.   Format:  (cont'd)
  1209.  
  1210.     CON: LINES = lines        lines = number of text rows: 25, 43, or 50
  1211.     CON: COLS = cols          cols=number of text columns: 40 or 80
  1212.  
  1213.     CON: RATE = r DELAY = d   r=keyboard typematic rate: 1..32
  1214.                               d=keyboard typematic delay: 1..4
  1215.  
  1216.     COM#:b,p,d,s,P Set serial port #=serial port number
  1217.       b=baud rate - 110..19200
  1218.       p=parity    - E(ven), N(one) or O(dd)
  1219.       d=data bits - 7 or 8
  1220.       s=stop bits - 1 or 2
  1221.       P=Continuous retry on timeout
  1222.  
  1223.     device CODEPAGE PREPARE=((cplist) [d:][path]filename[.ext])
  1224.       device      one of CON, PRN, LPT1, etc
  1225.       cplist      one or more of 437, 850, 860, 863, 865
  1226.       filename    specifies the file containing the character shapes
  1227. .cp
  1228.                                                              Page 4 of 5
  1229.  
  1230.   Format:  (cont'd)
  1231.     device CODEPAGE SELECT=cp
  1232.       device      one of CON, PRN, LPT1, etc
  1233.       cp          one of 437, 850, 860, 863, 865
  1234.  
  1235.     device CODEPAGE REFRESH
  1236.       device      one of CON, PRN, LPT1, etc
  1237.  
  1238.     device CODEPAGE /STATUS
  1239.       device      one of CON, PRN, LPT1, etc
  1240.  
  1241.   Explanation:
  1242.  
  1243.     Set the way  that a printer,  a color/graphics  monitor adapter,  or
  1244.     asynchronous  communications adapter operates.   See examples below.
  1245.     See the Dr DOS User Guide for a much more  thorough treatment of the
  1246.     MODE command and its multitude of options.
  1247. .cp
  1248.                                                              Page 5 of 5
  1249.  
  1250.   Example(s):
  1251.  
  1252.     Set the screen to color mode with 80 columns
  1253.  
  1254.       MODE CO80
  1255.  
  1256.     Set the first communications  port to 1200 baud,  no parity,  8 data
  1257.     bits, and 1 stopbit.
  1258.  
  1259.       MODE COM1:1200,N,8,1
  1260.  
  1261.     Set the first parallel printer to 132 columns per line.
  1262.  
  1263.       MODE LPT1:132
  1264. *END*
  1265. %MORE%
  1266.                                                              Page 1 of 1
  1267.  
  1268.   Purpose:
  1269.  
  1270.     Stops the screen from scrolling when it is full.
  1271.  
  1272.   Format:
  1273.  
  1274.     MORE <input filename
  1275.  
  1276.   Example(s):
  1277.  
  1278.     Display the file SAMPLE.DAT on the screen and pause when each screen
  1279.     is full.
  1280.  
  1281.       MORE <SAMPLE.DAT  or      TYPE SAMPLE.DAT | MORE
  1282. *END*
  1283. %NLSFUNC%
  1284.                                                              Page 1 of 1
  1285.  
  1286.   Purpose:
  1287.  
  1288.     National Language Support.  NLSFUNC  R3.00
  1289.  
  1290.   Format:
  1291.  
  1292.     NLSFUNC [[d:]path|/H]
  1293.  
  1294.       d:path       Drive and path of COUNTRY.SYS file.
  1295.       /H           Display help screen.
  1296.  
  1297.   Explanation:
  1298.  
  1299.     NLSFUNC provides support for extended country information and allows
  1300.     you to use the CHCP command to select code pages for all devices set
  1301.     up to use them.
  1302. *END*
  1303. %PASSWORD%
  1304.                                                              Page 1 of 2
  1305.  
  1306.   Purpose:
  1307.  
  1308.    PASSWORD R1.51    Display or change password protection level
  1309.  
  1310.   Format:
  1311.  
  1312.    PASSWORD [@][d:][path][filename.ext] [/R|W|D|P|G[:password]] [/N][/S]
  1313.       /R[:passwd] "passwd" required to read, write or delete the FILE
  1314.       /W[:passwd] "passwd" required to write or delete the FILE
  1315.       /D[:passwd] "passwd" required only to delete the FILE
  1316.       /P[:passwd] "passwd" required for all access to the DIRECTORY
  1317.       /G[:passwd] set global default password
  1318.       /N    remove password protection from file
  1319.       /NP   remove password protection from directory
  1320.       /NG   remove global default password
  1321.       /S    operate on files or directories in subdirectories
  1322.     Multiple files may be specified on the command line.
  1323.     Use '@' to specify that the filename that follows is a file list.
  1324. .cp
  1325.                                                              Page 2 of 2
  1326.  
  1327.   Explanation:
  1328.  
  1329.     The PASSWORD command is used to assign  password protection to files
  1330.     or paths.
  1331.  
  1332.   Example(s):
  1333.  
  1334.     Assign the password "SUZIE" to the file EYESOFF.LTR.
  1335.  
  1336.       PASSWORD eyesoff.ltr /r:SUZIE
  1337. *END*
  1338. %PATH%
  1339.                                                              Page 1 of 2
  1340.  
  1341.   Purpose:
  1342.  
  1343.     Establishes a search path for program execution.
  1344.  
  1345.   Format:
  1346.  
  1347.     PATH [d:]path[[;[d:]path...]  or  PATH ;
  1348.  
  1349.   Explanation:
  1350.  
  1351.     A hard disk is divided  into subdirectories to make  it more manage-
  1352.     able.  However, this type of structure has its advantages and disad-
  1353.     vantages.   When you want to run a program,  you must know where the
  1354.     program is located in order for Dr DOS to find it,  and then run it.
  1355.     You can use the PATH command to tell Dr DOS where to search for pro-
  1356.     grams you want to run.   You may specify a list of  drives and path-
  1357.     names, separated by semicolons.  Then, when you enter a command that
  1358. .cp
  1359.                                                              Page 2 of 2
  1360.  
  1361.   Explanation:  (cont'd)
  1362.  
  1363.     is not found in the current drive and directory,  Dr DOS will search
  1364.     all drives and directories on the path,  for that program file name.
  1365.  
  1366.   Example(s):
  1367.  
  1368.     Show the current path setting (if any).
  1369.  
  1370.       PATH
  1371.  
  1372.     Tell Dr DOS to search the current directory (default), then the ROOT
  1373.     directory, then the directory named UTILS.
  1374.  
  1375.       PATH C:\;C:\UTILS
  1376.  
  1377.     Remove all previous path settings.
  1378.  
  1379.       PATH ;
  1380. *END*
  1381. %PRINT%
  1382.                                                              Page 1 of 3
  1383.  
  1384.   Purpose:
  1385.  
  1386.     Prints a queue (a list) of  data files on the  printer while you are
  1387.     doing other jobs on the computer.
  1388.  
  1389.     PRINT R1.20    Print a queue of files in the background
  1390.  
  1391.   Format:
  1392.  
  1393.     PRINT [/D:device][/B:buffsiz][/U:busytick][/M:maxtick]
  1394.           [/S:timeslice][/Q:quesiz][/C][/P][/T] [filespec...]
  1395.  
  1396.       /C   cancel the preceding and all following filenames
  1397.       /P   print the preceding and all following filenames
  1398.       /T   cancel all files on queue
  1399.  
  1400. .cp
  1401.                                                          Page 2 of 3
  1402.  
  1403.   Explanation:
  1404.  
  1405.     /S:timeslice - to specify the time-slice value. Default is 8 slices.
  1406.                    The range is 1 to 255.
  1407.  
  1408.     /U:busytick  - to specify the number of clock ticks  that PRINT will
  1409.                    wait until print device is available. Default is 1.
  1410.  
  1411.     /M:maxtick   - to specify  how many  clock ticks PRINT  has to print
  1412.                    characters to the printer.   Default is 2.  The range
  1413.                    is 1 to 255.
  1414.  
  1415.     /T           - to set Terminate mode.  All queued files are canceled
  1416.                    from the print queue.
  1417.  
  1418.     /C           - to set the cancel  mode.   Allows you to select which
  1419.                    files to cancel.
  1420. .cp
  1421.                                                              Page 3 of 3
  1422.  
  1423.   Explanation:  (cont;d)
  1424.  
  1425.     /P           - to set the print mode.  The preceding filename +  all
  1426.                  following filenames are added to the print  queue until
  1427.                  /C is found on the command line, or you press Enter.
  1428.  
  1429.   Example(s):
  1430.  
  1431.     Print all files with the extension .TXT in the current directory.
  1432.  
  1433.       PRINT *.TXT
  1434. *END*
  1435. %PROMPT%
  1436.                                                              Page 1 of 3
  1437.  
  1438.   Purpose:
  1439.  
  1440.     Defines the DOS command line prompt.
  1441.  
  1442.   Format:
  1443.  
  1444.     PROMPT [prompt-text]
  1445.  
  1446.   Explanation:
  1447.  
  1448.     Where prompt-text specifies the  new text for the DOS prompt.   This
  1449.     can contain special characters in the form $p.   These special char-
  1450.     acters are as follows:
  1451.  
  1452.       $  the $ character                  l  the < character
  1453.       t  the time                         b  the | character
  1454.       d  the date                         q  the = character
  1455.       p  the current directory            h  the backspace character
  1456. .cp
  1457.                                                              Page 2 of 3
  1458.  
  1459.   Explanation:
  1460.  
  1461.     v  the DOS version number           e  the ESCape character
  1462.     n  the default drive letter         _  the CR LF sequence
  1463.     g  the > character
  1464.  
  1465.     The initial DOS prompt is the drive letter followed by the ">" char-
  1466.     acter.   However, the prompt can be changed to something else, which
  1467.     you may prefer over the default DOS prompt.  A popular prompt is the
  1468.     $p$g prompt.   This makes the prompt the current drive letter,  plus
  1469.     the current directory,  and then the ">" character.   This is useful
  1470.     when using a hard disk with several subdirectories.
  1471.  
  1472.     You can get very creative with the PROMPT command.
  1473.  
  1474. .cp
  1475.                                                                Page 3 of 3
  1476.  
  1477.   Example(s):
  1478.  
  1479.     Make the DOS prompt the current directory name and the greater than
  1480.     sign (C:\UTILS>).
  1481.  
  1482.       PROMPT $P$G
  1483.  
  1484.     Make the prompt the system time and date.
  1485.  
  1486.       PROMPT $T$D
  1487. *END*
  1488. %RD/RMDIR%
  1489.                                                              Page 1 of 1
  1490.  
  1491.   Purpose:
  1492.  
  1493.     Deletes a subdirectory from the disk.
  1494.  
  1495.   Format:
  1496.  
  1497.     RMDIR [d:]path  or  RD [d:]path
  1498.  
  1499.   Explanation:
  1500.  
  1501.     This command  removes a subdirectory  from the disk,  but only after
  1502.     all the files have been deleted with the DEL command.  Some programs
  1503.     write  hidden files  that cannot be deleted  using the  DEL command.
  1504.     Then the RD command will not work on this subdirectory.
  1505.  
  1506.   Example(s):
  1507.  
  1508.     Delete the subdirectory named UTILS.
  1509.  
  1510.       RD \UTILS
  1511. *END*
  1512. %RECOVER%
  1513.                                                              Page 1 of 1
  1514.  
  1515.   Purpose:
  1516.  
  1517.     RECOVER R1.02    Recover lost data from a damaged disk
  1518.  
  1519.   Format:
  1520.  
  1521.     RECOVER d:
  1522.     Recover cluster  chains into files.   Used only if root directory is
  1523.     corrupted.
  1524.  
  1525.     RECOVER [d:][path]filespec
  1526.     Recover file(s) containing bad sectors.
  1527.  
  1528.   Explanation:
  1529.  
  1530.     The RECOVER command  enables you to retrieve  information from files
  1531.     that have been corrupted.  If you have a file that is only partially
  1532.     readable, it removes unreadable parts so that the rest is usable.
  1533. *END*
  1534. %REN%
  1535.                                                              Page 1 of 2
  1536.  
  1537.   Purpose:
  1538.  
  1539.     Renames a disk file.
  1540.  
  1541.   Format:
  1542.  
  1543.     REN[AME] [d:][path]filename[.ext] filename[.ext]
  1544.  
  1545.   Explanation:
  1546.  
  1547.     The RENAME command changes  the name of a disk file.   Only the name
  1548.     is changed; the file itself is not altered. The wild card symbols, ?
  1549.     and *, may be used, but they should occur in  identical positions in
  1550.     both names or only be used in one name.
  1551.  
  1552.     Either REN or RENAME can be used.
  1553. .cp
  1554.                                                              Page 2 of 2
  1555.  
  1556.   Example(s):
  1557.  
  1558.     Rename all files named JOE  with any extension to  JIM with the same
  1559.     extension.
  1560.  
  1561.       RENAME JOE.* JIM.*
  1562. *END*
  1563. %REPLACE%
  1564.                                                              Page 1 of 2
  1565.  
  1566.   Purpose:
  1567.  
  1568.     Selectively replaces files on the target with  files of the same name
  1569.     from the source.
  1570.  
  1571.     REPLACE R1.43    Selective file copy
  1572.  
  1573.   Format:
  1574.  
  1575.     REPLACE [/Help] [@][d:][path][filename[.ext]] [d:][path] [/options]
  1576.  
  1577.     The first file specification is the drive,  path and name of file(s)
  1578.     to be copied (wildcard filenames allowed).   This specification must
  1579.     be present.   Use '@' to specify that the given file contains a list
  1580.     of files to be copied.
  1581.  
  1582.     The second file  specification is  the destination drive and path to
  1583.     which files will be copied. Default is the current drive and path.
  1584. .cp
  1585.                                                              Page 2 of 2
  1586.  
  1587.   Format:   (cont'd)
  1588.       /A          only copy files that do not exist on the destination
  1589.       /H          don't ignore files with hidden or system attributes
  1590.       /M          merge changed  files on source with unchanged files on
  1591.                   destination
  1592.       /N          preview operation - do not actually copy any files
  1593.       /P          prompt before copying each file
  1594.       /R          overwrite read-only files
  1595.       /S          copy files in subdirectories
  1596.       /U          only replace  files older on the destination  than the
  1597.                   source
  1598.       /W          wait for disks to be changed
  1599.  
  1600.   Example(s):
  1601.  
  1602.     Replace all files named JOE.TXT on your fixed disk drive C from your
  1603.     floppy drive A.
  1604.  
  1605.       REPLACE A:JOE.TXT C:\ /S
  1606. *END*
  1607. %RESTORE%
  1608.                                                              Page 1 of 2
  1609.  
  1610.   Purpose:
  1611.  
  1612.     RESTORE R2.00    Restore files saved by BACKUP
  1613.     Restores one or more backed-up files from one disk to another disk.
  1614.   
  1615.   Format:
  1616.  
  1617.     RESTORE [/Help] d: [[d:][path]filename] [/switches]
  1618.       /A:mm-dd-yy   restore files modified on or after specified date
  1619.       /B:mm-dd-yy   restore files modified on or before specified date
  1620.       /E:hh:mm:ss   restore files modified  at or earlier than specified
  1621.                     time
  1622.       /L:hh:mm:ss   restore files modified at or later than a  specified
  1623.                     time
  1624.       /M         restore files modified or deleted since last backup
  1625.       /N         restore files that no longer exist on the destination
  1626.       /P         prompt before restoring files changed since last backup
  1627. .cp
  1628.                                                              Page 2 of 2
  1629.  
  1630.   Format:  (cont'd)
  1631.  
  1632.       /R         report names of files which WOULD be restored - take no
  1633.                  action
  1634.       /S         restore files in subdirectories also
  1635.  
  1636.   Example(s):
  1637.  
  1638.     Restore all files from the backup diskettes to disk drice C.
  1639.     
  1640.       RESTORE A: C:\*.* /S
  1641. *END*
  1642. %SET%
  1643.                                                              Page 1 of 2
  1644.  
  1645.   Purpose:
  1646.  
  1647.     This command will insert strings into the  command processors envir-
  1648.     onment.  A copy of this environment is made available to any program
  1649.     running.
  1650.  
  1651.   Format:
  1652.  
  1653.     SET [name=[parameter]]
  1654.  
  1655.   Explanation:
  1656.  
  1657.     The entire string is inserted into the environment block. All lower-
  1658.     case letters are converted to uppercase  when inserted in the block.
  1659.     If the name already  exists in the environment,  it will be replaced
  1660.     with the new string.
  1661.  
  1662.     If you type SET without any parameters,  it will show you the envir-
  1663.     onment block strings.
  1664. .cp
  1665.                                                              Page 2 of 2
  1666.  
  1667.   Explanation:
  1668.  
  1669.     If name is  specified without  anything after  the equal sign,  then
  1670.     that name string will be deleted from the current environment block.
  1671.  
  1672.   Example(s):
  1673.  
  1674.     Place a string associated with LIB into the environment block.
  1675.  
  1676.       SET LIB=C:\TURBOC\LIB
  1677.  
  1678.     Erase the previous string entered.
  1679.  
  1680.       SET LIB=
  1681. *END*
  1682. %SETUP%
  1683.                                                              Page 1 of 1
  1684.  
  1685.   Purpose:
  1686.  
  1687.     SETUP   R3.0    Change DR DOS configuration.
  1688.  
  1689.   Format:
  1690.  
  1691.     SETUP [/Help]
  1692.  
  1693.   Explanation:
  1694.  
  1695.     Setup allows you to change your Dr DOS configuration as specified in
  1696.     your CONFIG.SYS and AUTOEXEC.BAT files.
  1697. *END*
  1698. %SHARE%
  1699.                                                              Page 1 of 1
  1700.  
  1701.   Purpose:
  1702.  
  1703.     SHARER1.00File sharing support.
  1704.     Loads support for file sharing.
  1705.  
  1706.   Format:
  1707.  
  1708.     SHARE [/H|[/X][/L:nn]]
  1709.  
  1710.       /H           Display help screen.
  1711.       /X           Turns state of SHARE off.
  1712.       /L:nn        Allocated nn locks.
  1713.  
  1714.   Explanation:
  1715.  
  1716.     SHARE is a Dr DOS program which provides support for file locking, a
  1717.     means by which all or  part of a file may be  reserved for exclusive
  1718.     access by one program.
  1719. *END*
  1720. %SID%
  1721.                                                              Page 1 of 1
  1722.  
  1723.   Purpose:
  1724.  
  1725.     Symbolic Instruction Debugger  SID  R3.1
  1726.  
  1727.   Format:
  1728.  
  1729.     SID [filename]
  1730.  
  1731.   Explanations:
  1732.  
  1733.     SID  (Symbolic Instruction Debugger)  allows you to  test  and debug
  1734.     programs interactively.   Help is available on SID  commands by run-
  1735.     ning SID and then typing ? or ?? at the SID command prompt.
  1736.  
  1737.     See the Dr DOS User Guide for a thorough treatment of SID.
  1738. *END*
  1739. %SORT%
  1740.                                                              Page 1 of 2
  1741.  
  1742.   Purpose:
  1743.  
  1744.     Reads data from the standard input device, sorts the data,  and then
  1745.     writes it to the standard output device.
  1746.  
  1747.   Format:
  1748.  
  1749.     SORT [/H][/R][/+n]
  1750.  
  1751.       /R   - to sort in reverse order
  1752.       /+n  - to sort based on the characters in column n
  1753.  
  1754.   Explanation:
  1755.  
  1756.     SORT is a filter program which reads standard input, sorts it alpha-
  1757.     betically, and then writes it to the standard output device.
  1758. .cp
  1759.                                                                Page 2 of 2
  1760.  
  1761.   Example(s):
  1762.  
  1763.     Read the file UNSORT.TXT, sort its records starting in column 1, and
  1764.     write the sorted output to a file name SORT.TXT.
  1765.  
  1766.       SORT /R <UNSORT.TXT >SORT.TXT
  1767.  
  1768.     Produce a directory listing sorted by file size (file size starts in
  1769.     column 14).
  1770.  
  1771.       DIR | SORT /+14
  1772. *END*
  1773. %SUBST%
  1774.                                                              Page 1 of 2
  1775.  
  1776.   Purpose:
  1777.  
  1778.     Establishes a subdirectory as a separate "disk".
  1779.  
  1780.   Format:
  1781.  
  1782.     SUBST [d:] [e:path]SUBST [/D]  or SUBST
  1783.  
  1784.     d:     specifies the drive  letter that you want to use  to refer to
  1785.            another drive or path.
  1786.  
  1787.     e:path specifies the drive or  path that you want to refer to with a
  1788.            nickname.  The path must start from the root directory.
  1789.  
  1790.     /D     deletes a substitution.  You must specify the drive letter of
  1791.            the drive whose substitution you want to delete.
  1792. .cp
  1793.                                                              Page 2 of 2
  1794.  
  1795.   Explanation:
  1796.  
  1797.     Some older programs do not  support the use of subdirectories,  they
  1798.     expect their data to be on a specific drive. In such a case, you can
  1799.     instruct DOS to treat a subdirectory as a different drive name. Then
  1800.     you can tell the program to  use this drive name  to access its data
  1801.     files.
  1802.  
  1803.   Example(s):
  1804.  
  1805.     Substitute drive D for the subdirectory \WP on drive C.
  1806.  
  1807.       SUBST D: C:\WP
  1808. *END*
  1809. %SYS%
  1810.                                                              Page 1 of 2
  1811.  
  1812.   Purpose:
  1813.  
  1814.     SYS R1.31    Transfer operating system files
  1815.  
  1816.     Transfers a copy of the operating system files from the default
  1817.     drive to the specified drive.
  1818.  
  1819.   Format:
  1820.  
  1821.     [d1:][path]SYS d2:
  1822.  
  1823.   Explanation:
  1824.  
  1825.     Two hidden operating  system files are copied  from the source drive
  1826.     d1 to the destination drive d2, so that the destination disk becomes
  1827.     a bootable system disk.   Note, however, that the  SYS  command does
  1828.     not copy the COMMAND.COM file to the new disk.
  1829. .cp
  1830.                                                                Page 2 of 2
  1831.  
  1832.   Explanation:  (cont'd)
  1833.  
  1834.     You cannot use the SYS command to place the DOS files on a disk that
  1835.     was formatted without the /S parameter.
  1836.  
  1837.   Example(s):
  1838.  
  1839.     Transfer the operating system from the default drive to drive A.
  1840.  
  1841.       SYS A:
  1842. *END*
  1843. %TIME%
  1844.                                                              Page 1 of 2
  1845.  
  1846.   Purpose:
  1847.  
  1848.     Set or display the current system time.
  1849.  
  1850.   Format:
  1851.  
  1852.     TIME [hh:mm[:ss[.xx]]]
  1853.  
  1854.       hh to specify the hour
  1855.       mm to specify the minutes
  1856.       ss to specify the seconds
  1857.       xx to specify the hundredths of seconds.
  1858.  
  1859.     TIME with no  parameters shows  the current time and  asks for a new
  1860.     time.
  1861. .cp
  1862.                                                              Page 2 of 2
  1863.  
  1864.   Example(s):
  1865.  
  1866.     Set the time to noon.
  1867.  
  1868.       TIME 12:00:00
  1869. *END*
  1870. %TOUCH%
  1871.                                                              Page 1 of 2
  1872.  
  1873.   Purpose:
  1874.  
  1875.     TOUCH R1.41    Change file time and date stamps
  1876.  
  1877.   Format:
  1878.  
  1879.     TOUCH [/Help] [@][d:][path]filename[.ext] [/options]
  1880.  
  1881.       @             the filename that follows is the name of a file list
  1882.       d:            drive which touch is to search
  1883.       path          directory where search is to begin
  1884.       filename.ext  file to be touched (wildcards allowed)
  1885.  
  1886.       /T:hh:mm:ss   time to be set (24 hour) (default is current time)
  1887.       /D:mm-dd-yy   date to be set (default is current date)
  1888.       /F:[E|J|U]    specify European,  Japanese or USA  format for  date
  1889.                     option
  1890.       /P            prompt before touching each file
  1891. .cp
  1892.                                                              Page 2 of 2
  1893.  
  1894.   Format:  (cont'd)
  1895.  
  1896.       /R            touch read-only files
  1897.       /S            touch files in sub-directories
  1898.  
  1899.     Multiple files may be  specified on the command line.   The filename
  1900.     must present. If you wish to specify all files, use *.*
  1901.  
  1902.   Example(s):
  1903.  
  1904.     Set the date-time stamp on all files in the UTILS directory, includ-
  1905.     ing subdirectories, to be 06:30 am today.
  1906.  
  1907.       TOUCH \UTILS\*.* /S /T:06:30:00
  1908. *END*
  1909. %TREE%
  1910.                                                              Page 1 of 2
  1911.  
  1912.   Purpose:
  1913.  
  1914.     TREE R1.51    Show directory structure
  1915.     Displays all directory paths found on the specified drive.
  1916.  
  1917.   Format:
  1918.  
  1919.     TREE [/Help]  [d:][path][filename[.ext]] [/B] [/F] [/G] [/P]
  1920.  
  1921.       d:            drive which tree is to search
  1922.       path          directory where search is to begin (default is root)
  1923.       filename.ext  file to find
  1924.  
  1925.       /B            brief mode - omit file totals
  1926.       /F            display all files
  1927.       /G            graphical directory display
  1928.       /P            pause after each page
  1929.  
  1930.     Multiple files may be specified on the command line.
  1931. .cp
  1932.                                                              Page 2 of 2
  1933.  
  1934.   Explanation:
  1935.  
  1936.     When there are many subdirectories  and files on a hard disk,  it is
  1937.     difficult to visualize where files are and how to move from place to
  1938.     place.  The TREE command is designed to show the organization of the
  1939.     disk.  Unfortunately, this program does not give a good graphic pic-
  1940.     ture of  the subdirectory  structure of a disk.   Several commercial
  1941.     programs are available that will create graphic displays of the disk
  1942.     tree structure.
  1943.  
  1944.   Example(s):
  1945.  
  1946.     Show the directory tree for disk C.
  1947.  
  1948.       TREE C:
  1949.  
  1950.     The same as above but it also shows all files on drive C.
  1951.  
  1952.       TREE C: /F
  1953. *END*
  1954. %TYPE%
  1955.                                                              Page 1 of 2
  1956.  
  1957.   Purpose:
  1958.  
  1959.     Display a text file to the standard output device.
  1960.  
  1961.   Format:
  1962.  
  1963.     TYPE [d:][path]filename[.ext]
  1964.  
  1965.   Explanation:
  1966.  
  1967.     Global filename characters are NOT allowed.
  1968.  
  1969.     The TYPE command  will display the  contents of  a text  file on the
  1970.     video screen (standard output). The standard output redirection com-
  1971.     mand may be used to redirect the displayed output to another file or
  1972.     the printer.
  1973. .cp
  1974.                                                              Page 2 of 2
  1975.  
  1976.   Example(s):
  1977.  
  1978.     Display the contents of LETTER.TXT to the screen.
  1979.  
  1980.       TYPE LETTER.TXT
  1981.  
  1982.     Display the contents of LETTER.TXT to the printer using the standard
  1983.     output device redirection command.
  1984.  
  1985.       TYPE LETTER.TXT >PRN
  1986. *END*
  1987. %VER%
  1988.                                                              Page 1 of 1
  1989.  
  1990.   Purpose:
  1991.  
  1992.     Displays the Dr DOS version number.
  1993.  
  1994.   Format:
  1995.  
  1996.     VER
  1997.  
  1998.   Explanation:
  1999.  
  2000.     The Dr DOS version consists of a single digit  major version number,
  2001.     followed by a period, then a one digit minor version number.
  2002.  
  2003.   Example(s):
  2004.  
  2005.     Display the Dr DOS version number you are using.
  2006.  
  2007.       VER
  2008. *END*
  2009. %VERIFY%
  2010.                                                              Page 1 of 2
  2011.  
  2012.   Purpose:
  2013.  
  2014.     Sets DOS into the verify mode.
  2015.  
  2016.   Format:
  2017.  
  2018.     VERIFY [ON | OFF]
  2019.  
  2020.   Explanation:
  2021.  
  2022.     VERIFY without parameters shows the current setting of verify mode.
  2023.  
  2024.     If the VERIFY mode is set 'ON', Dr DOS will verify any data when it
  2025.     is written to the disk.   If the data cannot be  read back from the
  2026.     disk, Dr DOS will generate an error message at that time. This will
  2027.     allow you to see that a disk is damaged, replace the disk, and save
  2028.     your data to the new disk.
  2029. .cp
  2030.                                                              Page 2 of 2
  2031.  
  2032.   Example(s):
  2033.  
  2034.     Set the verify mode to ON.
  2035.  
  2036.       VERIFY ON
  2037. *END*
  2038. %VIEWMAX%
  2039.                                                              Page 1 of 1
  2040.  
  2041.   Purpose:
  2042.  
  2043.     Invoke the Dr DOS dual window command shell.
  2044.  
  2045.   Format:
  2046.  
  2047.     VIEWMAX
  2048.  
  2049.   Explanation:
  2050.  
  2051.     Brings up the full screen,  dual window Dr DOS command shell,  which
  2052.     has a graphics oriented, mouse driven user interface very similar to
  2053.     that of the MacIntosh.   Allows user to create  and manipulate "file
  2054.     folders" as well as  individual files and directories.   Full access
  2055.     to all Dr DOS commands.
  2056. *END*
  2057. %VOL%
  2058.                                                              Page 1 of 1
  2059.  
  2060.   Purpose:
  2061.  
  2062.     Displays the disk volume label information.
  2063.  
  2064.   Format:
  2065.  
  2066.     VOL [d:]
  2067.  
  2068.     If you do not specify a drive, the default drive is used.
  2069.  
  2070.   Example(s):
  2071.  
  2072.     Show the volume label for the disk in drive A.
  2073.  
  2074.       VOL A:
  2075. *END*
  2076. %XCOPY%
  2077.                                                              Page 1 of 2
  2078.  
  2079.   Purpose:
  2080.  
  2081.     Selectively copy groups of files.
  2082.  
  2083.   Format:
  2084.  
  2085.     XCOPY [d:][path]filename[.ext]  [d:][path][filename[.ext]]
  2086.           [/A][/D:mm-dd-yy][/E][/M][/P][/S][/V][/W]
  2087.  
  2088.     The source specification is first, the target is second.
  2089.  
  2090.       /A  copies only files with the archive bit set,  meaning they have
  2091.           changed since last copied with BACKUP or XCOPY /M.
  2092.       /D:mm-dd-yy  copies files whose date is the same or later than the
  2093.           date specified.
  2094.       /E  creates subdirectories on the target disk even if they will be
  2095.           empty. Otherwise XCOPY will not create an empty subdirectory.
  2096. .cp
  2097.                                                              Page 2 of 2
  2098.  
  2099.   Format:  (cont'd)
  2100.  
  2101.       /M copies only files with the archive bit set,  but will clear the
  2102.          archive bit after  it is copied.   This is much like the BACKUP
  2103.          command.
  2104.       /P prompts you before copying each file.
  2105.       /S copies files in all subdirectories under the current directory.
  2106.       /V tells XCOPY to verify that each file has been copied correctly,
  2107.          much like the /V parameter in the COPY command.
  2108.       /W tells XCOPY to wait for you to insert a disk.
  2109.  
  2110.   Example(s):
  2111.  
  2112.     Use XCOPY to copy all files  named JOE.TXT with the  archive bit set
  2113.     from drive C to drive A, then clear the archive bit to indicate that
  2114.     it has been copied.
  2115.  
  2116.               XCOPY C:JOE.TXT A: /M
  2117. *END*
  2118. %XDEL%
  2119.                                                              Page 1 of 2
  2120.  
  2121.   Purpose:
  2122.  
  2123.     Extended file delete.   XDEL R1.41
  2124.  
  2125.   Format:
  2126.  
  2127.     XDEL [/Help]   [@][d:][path]filename[.ext]...  [/options]
  2128.       @             the filename that follows is the name of a file list
  2129.       d:            drive which xdel is to search
  2130.       path          directory where search is to begin
  2131.       filename.ext  file to be deleted (wildcards allowed)
  2132.       /D            remove empty subdirectories
  2133.       /N            delete specified files with no warning (careful!)
  2134.       /O            overwrite before deleting - file PERMANENTLY LOST
  2135.       /P            prompt before deleting each file
  2136.       /R            delete read-only files
  2137.       /S            delete files in subdirectories
  2138.  
  2139.     Multiple files may be specified on the command line.
  2140. .cp
  2141.                                                              Page 2 of 2
  2142.  
  2143.   Explanation:
  2144.  
  2145.     XDEL is a command used to delete multiple files extended across sub-
  2146.     directories and to remove empty directories.
  2147.  
  2148.   Examples:
  2149.  
  2150.     Delete all files with the  .DOC extension from the  currnt directory
  2151.     and all its subdirectories.
  2152.  
  2153.       XDEL *.DOC /S
  2154. *END*
  2155. %XDIR%
  2156.                                                              Page 1 of 2
  2157.  
  2158.   Purpose:
  2159.  
  2160.     Extended directory display   XDIR R1.41
  2161.   
  2162.   Format:
  2163.  
  2164.     XDIR [/H] [[+|-ADHRS] [d:][path][filename[.ext]]] [options]
  2165.  
  2166.     +|-ADHRS      It is possible to select files for display on the bas-
  2167.                   is of  their file attributes.   For example, "xdir +A"
  2168.                   will display only  those files that have the "archive"
  2169.                   attribute  set;  "xdir -R" will display all files that
  2170.                   do not have the read-only attribute set.
  2171.     d:            drive which xdir is to search
  2172.     path          directory where search begins (default is current)
  2173.     filename.ext  file to find (wildcards allowed)
  2174.     /B            brief mode: display only file path and name
  2175.     /C            display checksum for each file
  2176. .cp
  2177.                                                              Page 2 of 2
  2178.  
  2179.   Format:  (cont'd)
  2180.  
  2181.     /P            pause after each page is displayed
  2182.     /L            long display format (default)
  2183.     /N            do not sort directory
  2184.     /R            reverse sort order
  2185.     /S            display files in sub-directories
  2186.     /T            sort directory by date/time (default is by name)
  2187.     /W            wide display format
  2188.     /Z            sort directory by file size
  2189.  
  2190.   Explanation:
  2191.  
  2192.     XDIR is an expanded version of  DIR that provides  extra options for
  2193.     displaying the contents of directories and subdirectories.
  2194. *END*
  2195. %DRHELP V1.1%
  2196.                                                              Page 1 of 9
  2197.  
  2198.   The following is general information about the terms used in this HELP
  2199.   program and about Dr DOS terms and specifications.
  2200.  
  2201.  
  2202.   When the HELP program shows  the format of a command,  it includes all
  2203.   variations of the command.   Many times, all the  different parameters
  2204.   are not required;  these parameters are shown enclosed in square brac-
  2205.   kets ([ ]).
  2206.  
  2207.   In the HELP program,  we refer to all  Dr DOS commands as  'commands'.
  2208.   However, many of these Dr DOS commands are not built into Dr DOS; they
  2209.   are really programs that have been provided on your Dr DOS diskette.
  2210.  
  2211.   This HELP program does not attempt to cover all the technical informa-
  2212.   tion on every  Dr DOS command.  If a command  needs special attention,
  2213.   the HELP program  will simply refer  you to the Dr DOS manual for more
  2214.   information on the command. This program was created to help beginners
  2215.   and to be a quick reference to all PC users.
  2216. .cp
  2217.                                                              Page 2 of 9
  2218.  
  2219.   Each command explained in this  help program has four sections.   They
  2220.   are: the Purpose,  the command Format, Explanation,  and the Examples.
  2221.   The Format section describes the correct syntax for the command, along
  2222.   with all possible optional switches.
  2223.  
  2224.                        * FILE SPECIFICATIONS *
  2225.  
  2226.   The file specification tells Dr DOS  where to search for the specified
  2227.   file. A filespec has four parts: the drive letter, the path, the file-
  2228.   name, and filename extension.
  2229.  
  2230.                        
  2231.                        - The Drive Specifier -
  2232.  
  2233.   A drive letter specifies which drive the file is on.  The drive letter
  2234.   is followed by a colon.   For example, B: is the drive  specifier that
  2235.   represents drive B.  If a drive specifier is omitted, then DOS assumes
  2236.   the current (default) drive.
  2237. .cp
  2238.                                                              Page 3 of 9
  2239.  
  2240.                        - The Path Specifier -
  2241.  
  2242.   The path tells Dr DOS where the file can be found.  The path is another
  2243.   name for the directory or subdirectory.
  2244.  
  2245.                       - The Filename Specifier -
  2246.  
  2247.   A filename consists of one to eight characters.  The following are NOT
  2248.   valid characters:      .  "  /  \  [  ]  :  |  <  >  +  =  ;  ,  space
  2249.  
  2250.   Any other characters are valid filename characters.  Dr DOS checks for
  2251.   invalid filename characters in a filename specification.
  2252.  
  2253.                      - The Filename Extension -
  2254.  
  2255.   A filename extension consists of one to three characters preceded by a
  2256.   period.  The same rules apply for valid  extension characters as apply
  2257.   for filename characters.
  2258. .cp
  2259.                                                              Page 4 of 9
  2260.  
  2261.                   * GLOBAL FILENAME CHARACTERS *
  2262.  
  2263.   There are two  special characters that  can be used in a  filename and
  2264.   extension specification.  They are the "*" and "?" characters.   These
  2265.   characters  make life  much easier  when executing Dr DOS commands  on
  2266.   several files with similar names.
  2267.  
  2268.  
  2269.                      - The ? Character -
  2270.  
  2271.   A question mark (?) in a filename or filename extension indicates that
  2272.   any character can occupy that position.  For example,
  2273.  
  2274.                        dir lett?r.txt
  2275.  
  2276.   displays all  filenames on the default drive  that start with the four
  2277.   letters LETT, then any character, followed by the R character with the
  2278.   extension of .TXT.
  2279. .cp
  2280.                                                              Page 5 of 9
  2281.  
  2282.   An example of what might be displayed is:
  2283.  
  2284.     letter.txt
  2285.     lettxr.txt
  2286.     lett1r.txt
  2287.  
  2288.  
  2289.                      - The * Character -
  2290.  
  2291.   An asterisk (*) in a filename or filename extension indicates that any
  2292.   character can occupy that position and all remaining positions in that
  2293.   filename or extension. For example,
  2294.  
  2295.                         dir lett*.txt
  2296.  
  2297.   displays all filenames on the default  drive that start  with the let-
  2298.   ters LETT,  followed by any other letters,  and have the  extension of
  2299.   .TXT.
  2300. .cp
  2301.                                                              Page 6 of 9
  2302.  
  2303.   An example of what might be displayed is:
  2304.  
  2305.     lett.txt
  2306.     letter.txt
  2307.     letters.txt
  2308.     lett1.txt
  2309.  
  2310.  
  2311.                       * DOS DEVICE NAMES *
  2312.  
  2313.   Device names are special  names which have certain meanings to Dr DOS.
  2314.   These names are reserved; do  NOT  name any files with a Dr DOS device
  2315.   name.
  2316.  
  2317.  
  2318.                     - CON (Console Device) -
  2319.  
  2320.   Console keyboard/screen.   This is referred to  as the standard output
  2321.   device. This can be redirected at the command line when redirection is
  2322.   desired (see below).
  2323. .cp
  2324.                                                              Page 7 of 9
  2325.  
  2326.                         - AUX or COM1 -
  2327.  
  2328.   The first serial port.  This is sometimes called the RS-232C port, the
  2329.   serial port, or the asynchronous communications adapter.  This is con-
  2330.   nected to a phone line modem, or serial printer.
  2331.  
  2332.  
  2333.                         - LPT1 or PRN -
  2334.  
  2335.   The first parallel port.  This is connected to your  parallel printer,
  2336.   the most common type of printer on a personal computer.
  2337.  
  2338.  
  2339.                             - NUL -
  2340.  
  2341.   This device does not exist.  It is a "dummy"  device name  for testing
  2342.   purposes or to tell  a program to output its messages to nowhere.   As
  2343.   an output device,  the write operations are simulated,  but no data is
  2344.   written. As an input device, an immediate end-of-file is sent.
  2345. .cp
  2346.                                                              Page 8 of 9
  2347.  
  2348.           * REDIRECTION OF STANDARD INPUT & STANDARD OUTPUT *
  2349.  
  2350.   DrDOS provides a  convenient way for us to redirect  the output to the
  2351.   screen,  or input from  the keyboard, to another device or file.   The
  2352.   standard output redirection syntax is as follows:
  2353.  
  2354.                    > [d:][path]filename[.ext]
  2355.  
  2356.   This causes all output that would go to the screen to be placed in the
  2357.   file specified.   This will create the file if it does not already ex-
  2358.   ist, or erase its contents and start over if the file does exist.
  2359.  
  2360.                    >> [d:][path]filename[.ext]
  2361.  
  2362.   This causes the output to the screen to be sent to the file specified.
  2363.   If the file does not exist, it will create a new one. If the file does
  2364.   exist,  it will append  to the bottom of  the file without erasing any
  2365.   data presently in the file.
  2366. .cp
  2367.                                                              Page 9 of 9
  2368.  
  2369.   The standard input redirection syntax is as follows:
  2370.  
  2371.                   < [d:][path]filename[.ext]
  2372.  
  2373.   This causes standard  input to be retrieved  from the file  specified.
  2374.   This redirection can be used with the Dr DOS SORT command.
  2375.  
  2376.   The filename  specification can also  be any device name,  such as the
  2377.   printer. To get a printout of your directory, simply type:
  2378.  
  2379.                            DIR > prn
  2380.  
  2381.   A copy of your directory will be printed on the first parallel printer
  2382.   (LPT1).   To send a copy of the directory to a file, simply type:
  2383.  
  2384.                        DIR > myfile.txt
  2385.  
  2386.   A file named MYFILE.TXT will be created or erased if already  present,
  2387.   and the directory listing will be put in the file.
  2388. *END*
  2389.